import React from 'react'; import Link from 'next/link'; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'; import { Button } from '@/components/ui/button'; import { Badge } from '@/components/ui/badge'; import { Briefcase, Package, Settings, ArrowRight, CheckCircle, Monitor, Shield, BarChart3, Building2 } from 'lucide-react'; export default function LandingPage() { const portals = [ { id: 'sales', title: '기술 영업 포털', description: '기술 영업 단계에서의 RFQ를 관리할 수 있는 통합 플랫폼', icon: Briefcase, color: 'from-green-500 to-emerald-500', // href: '/sales', href: '/evcp', features: ['벤더 관리', '기술 영업 RFQ'], }, { id: 'purchase', title: '구매 포털', description: '협력 업체에서 부터 마지막 발주까지 원스톱 구매 솔루션', icon: Package, color: 'from-blue-500 to-indigo-500', // href: '/procurement', href: '/evcp', features: ['협력 업체 관리', '구매 관리'], }, { id: 'design', title: '설계 포털', description: '벤더가 플랫폼을 통해 데이터와 문서를 제출할 수 있게 하고 TBE를 처리할 수 있는 플랫폼', icon: Settings, color: 'from-purple-500 to-violet-500', // href: '/engineering', href: '/evcp', features: ['설계 기준정보 관리', 'TBE'], } ]; return (
{/* Header */}

Enterprise Vendor Co-work Platform

통합된 비즈니스 솔루션으로 구매부터 설계까지,
모든 업무 프로세스를 하나의 플랫폼에서 관리하세요

{/* Main Portal Selection */}

포털을 선택하세요

각 포털은 특화된 기능과 도구를 제공하여 업무 효율성을 극대화합니다

{portals.map((portal) => { const Icon = portal.icon; return (
{portal.title} {portal.description}

주요 기능

{portal.features.map((feature, idx) => (
{feature}
))}
); })}
{/* Additional Info Section */}
{/* Left Section - Text Content */}

모든 포털이 연동됩니다

구매, 영업, 설계 포털 간의 데이터가
실시간으로 동기화되어 효율적인 업무 협업이 가능합니다

{/* Right Section - Feature Icons */}
실시간 동기화
통합 대시보드
권한 관리
보안 인증
{/* Footer */}
); }